/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero section styles */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: 10%;
}

.hero-title {
    color: #4C9AFF; /* Orange color from the image */
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    background-color: #5DA9E9; /* Blue color from the image */
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4089c9;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero-content {
        margin-left: 5%;
        margin-right: 5%;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* New Service Section Styles */
.service-section {
    padding: 40px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1; /* Ensure content appears above navbar when scrolling */
    margin: 0;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-image {
    width: 100%;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 20px;
}

.section-subtitle {
    color: #333;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    color: #4C9AFF; /* Orange color matching the hero section */
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .service-section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* Industry Solutions Section */
.industry-solutions {
    padding: 80px 20px;
    background: #f5f5f5;
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Industry Navigation Styles */
.industry-nav {
    width: 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.industry-btn {
    padding: 15px 20px;
    text-align: left;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
}

.industry-btn:hover {
    color: #4C9AFF;
    background: rgba(255, 140, 66, 0.1);
}

.industry-btn.active {
    color: #4C9AFF;
    border-left-color: #4C9AFF;
    background: rgba(255, 140, 66, 0.1);
    font-weight: 600;
}

/* Content Panel Styles */
.content-panel {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.industry-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-content.active {
    display: block;
    opacity: 1;
}

.industry-content h2 {
    color: #4C9AFF;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.industry-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.learn-more {
    background-color: #5DA9E9;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more:hover {
    background-color: #4089c9;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .industry-solutions {
        flex-direction: column;
        padding: 40px 20px;
    }

    .industry-nav {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .industry-btn {
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }

    .industry-btn.active {
        border-left: none;
        border-bottom-color: #4C9AFF;
    }
}

@media (max-width: 480px) {
    .content-panel {
        padding: 20px;
    }

    .industry-content h2 {
        font-size: 1.8rem;
    }

    .learn-more {
        width: 100%;
    }
}

/* Benefits Section Styles */
.benefits-section {
    padding: 40px 0;
    background: #f8f8f8;
    position: relative;
    z-index: 1; /* Ensure content appears above navbar when scrolling */
    margin: 0;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.benefits-content {
    flex: 1;
    max-width: 600px;
}

.benefits-title {
    color: #4C9AFF;
    font-size: 3.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.benefits-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #4C9AFF;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: #555;
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.benefits-list li::before {
    content: "•";
    color: #4C9AFF;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.benefits-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-in;
}

.fade-in.visible {
    opacity: 1;
}

/* Slide In From Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Up Animation */
.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Add smooth scrolling to the whole page */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-container {
        padding: 0 20px;
        gap: 40px;
    }

    .benefits-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
    }

    .benefits-content,
    .benefits-image {
        max-width: 100%;
    }

    .benefits-title {
        font-size: 2.5rem;
    }

    .benefits-list li {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 20px 0;
    }

    .benefits-title {
        font-size: 2rem;
    }

    .benefits-list li {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

/* Industry Navigation Section */
.industry-nav-section {
    padding: 40px 0;
    background: #f5f5f5;
    position: relative;
    z-index: 1; /* Ensure content appears above navbar when scrolling */
    margin-top: 0;
}

.industry-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

/* Sidebar Styles */
.industry-sidebar {
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.industry-link {
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: transparent;
}

.industry-link span {
    color: #666;
    font-size: 1rem;
}

.industry-link:hover {
    background: #dbe5f2;
}

.industry-link.active {
    border-left-color: #4C9AFF;
    background: #d4e1f2;
}

.industry-link.active span {
    color: #4C9AFF;
    font-weight: 600;
}

/* Content Container Styles */
.industry-content-container {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.industry-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-content.active {
    display: block;
    opacity: 1;
}

.industry-content h2 {
    color: #4C9AFF;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.industry-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.learn-more {
    background-color: #5DA9E9;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background-color: #4089c9;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .industry-container {
        flex-direction: column;
    }

    .industry-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 15px;
    }

    .industry-link {
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }

    .industry-link.active {
        border-left: none;
        border-bottom-color: #4C9AFF;
    }
}

@media (max-width: 480px) {
    .industry-nav-section {
        padding: 20px 0;
    }

    .industry-content-container {
        padding: 20px;
    }

    .industry-content h2 {
        font-size: 1.8rem;
    }

    .learn-more {
        width: 100%;
    }
}

/* Features Section Styles */
.features-section {
    padding: 40px 0;
    background: #ffffff;
    position: relative;
    z-index: 1; /* Ensure content appears above navbar when scrolling */
    margin: 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-title {
    color: #4C9AFF;
    font-size: 3.5rem;
    margin-bottom: 60px;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(154, 183, 48, 0.1); /* Light green background */
    border-radius: 10px;
}

.feature-icon i {
    font-size: 24px;
    color: #0747A6; /* Green color for icons */
}

.feature-card h3 {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 30px 0;
    }

    .features-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-title {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon i {
        font-size: 18px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 40px 0;
    background: #f8f8f8;
    position: relative;
    z-index: 1; /* Ensure content appears above navbar when scrolling */
    margin: 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    color: #4C9AFF;
    font-size: 3.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 140, 66, 0.05);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon i {
    color: #4C9AFF;
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Active states */
.faq-item.active .faq-question {
    background: rgba(255, 140, 66, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust based on content */
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 0;
    }

    .faq-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 2.2rem;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Footer Section Styles */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 40px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Logo Column */
.footer-column {
    flex: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.national-sales {
    margin-bottom: 20px;
}

.national-sales h3 {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.national-sales p {
    margin: 0;
}

.national-sales a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.national-sales a:hover {
    color: #4C9AFF;
}

.footer-consultation {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4C9AFF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.footer-consultation:hover {
    background-color: #3d7acc;
}

/* Footer Columns */
.footer-column h3 {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4C9AFF;
}

/* Contact info links in footer */
.contact-info a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #4C9AFF !important;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .national-sales {
        margin-bottom: 20px;
    }

    .footer-consultation {
        display: inline-block;
        margin: 0 auto;
    }

    .footer-column h3 {
        position: relative;
        cursor: pointer;
        padding: 15px 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-column h3::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
    }

    .footer-column.active h3::after {
        content: '-';
    }

    .footer-column:not(:first-child) ul {
        display: none;
        padding: 15px 0;
    }

    .footer-column.active ul {
        display: block;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .footer-section {
        padding: 40px 0;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-consultation {
        width: 100%;
        box-sizing: border-box;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #4C9AFF, #5DA9E9);
    z-index: 9999;
    transition: width 0.2s ease-out;
}

/* Adjust any other elements that might need spacing from the navbar */
.service-section,
.industry-nav-section,
.benefits-section,
.features-section,
.faq-section {
    position: relative;
    z-index: 1; /* Ensure content appears above navbar when scrolling */
}

.main-navbar {
    position: fixed;
    z-index: 1000;
}

.dropdown-menu {
    display: none; /* Hide dropdowns by default */
}

.nav-item.active .dropdown-menu {
    display: block; /* Show dropdown when the nav item is active */
}
